DESIGN
By Mark Ream
CURSOR 2, no. 2 (September 1980): 60.


Editor's Note: This delightful little program puts up some very nice designs. 
When "PRESS DESIRED CHARACTER" is printed on-screen, select the character you 
would like to see as the central theme of the design and merely press that key. 
We have added a couple modifications to the program that make some interesting 
changes. Press "GO" for new character. - Fred Cornett


The above program as-stands, does a horizontal sweep which changes the 
characters, add line 80, which will add a vertical sweep.

80 FOR C=43TO -43STEP -2;BOX -2,C,156,1,3 ;NEXT C

Make the following line changes to automatically run through all the special 
characters that are available on the Bally, one character at a time, pausing 
for a few seconds in between displays.

40 for A=33TO 99;clear 
50 Eliminate This Line!
90 for X=1t0 1500;next X
100 next A


Archive Notes:

This program was typed in from the CURSOR newsletter by Adam Trionfo on August 
31, 2016.  It was archived using the 300-baud utilities TXT2PRG and KCSWIN.

Note that the archive includes three versions of this program:

1) DESIGN - The original version.  This program has none of the modifications
            that are suggested.

2) DESIGN (Mod 1) - Added line 80 for vertical sweep.

3) DESIGN (Mod 2) - Added line 80 for vertical sweep and made the other
                    necessary changes to make the program automatically
                    run through all of the special characters.

